home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 004a / evoldem2.zip / INPUT.1 < prev    next >
Text File  |  1989-09-30  |  2KB  |  96 lines

  1. type "coy"
  2. {
  3.     symbol : 12 
  4.     color  : (red,dark_grey,normal,underline) 
  5.     lifespan : 100
  6.     dormancy : 5
  7.     speed : 1
  8. }
  9.  
  10. type "fast" 
  11. {
  12.     symbol : 12 
  13.     color  : (light_red,dark_grey,normal,underline) 
  14.     lifespan : 100
  15.     dormancy : 5
  16.     speed : 1
  17. }
  18.  
  19. type "faithful" 
  20. {
  21.     symbol : 11
  22.     color  : (blue, dark_grey,normal, underline)
  23.     lifespan : 100
  24.     dormancy : 5 
  25.     speed : 1
  26. }
  27.  
  28. type "philanderer" 
  29. {
  30.     symbol : 11
  31.     color  : (light_blue,dark_grey,normal,underline) 
  32.     lifespan : 150
  33.     dormancy : 5
  34.     speed : 1
  35. }
  36.  
  37. mate ( "faithful" , "coy" )
  38. {
  39.     courtship : ( 15 , 80 ) 
  40.     rearing   : ( 20 , 20 )
  41.     offspring : ( 0, 15 , 85 )
  42.     distribution : ( "faithful" ,  30, 
  43.              "coy",      50, 
  44.              "philanderer", 10, 
  45.              "fast",      10        
  46.                )
  47. }
  48.  
  49. mate ( "faithful" , "fast" )
  50. {
  51.     courtship : (  5 , 90 ) 
  52.     rearing   : ( 10 , 30 )
  53.     offspring : ( 50, 25 , 25 )
  54.     distribution : ( "faithful" ,  40, 
  55.              "fast",      20, 
  56.              "philanderer", 20, 
  57.              "coy",      20        
  58.                )
  59. }
  60.  
  61. mate ( "philanderer" , "coy" )
  62. {
  63.     courtship : ( 15 ,  25 ) 
  64.     rearing   : (  5 , 30 )
  65.     offspring : ( 85, 10, 5) 
  66.     distribution : ( 
  67.              "philanderer", 10, 
  68.              "coy",       50, 
  69.              "faithful",    20, 
  70.              "fast",      20        
  71.                )
  72. }
  73.  
  74. mate ( "philanderer" , "fast" )
  75. {
  76.     courtship : ( 0 , 100 ) 
  77.     rearing   : ( 5 , 35 )
  78.     offspring : ( 65, 25, 10)
  79.     distribution : ( 
  80.              "philanderer", 35, 
  81.              "fast",      20,        
  82.              "coy",       25, 
  83.              "faithful",   20
  84.                )
  85. }
  86.  
  87.  
  88.  
  89. population
  90. {
  91.     "faithful"    : 125
  92.     "coy"       : 125        
  93.     "philanderer" : 25                
  94.     "fast"      : 25
  95. }        
  96.